home *** CD-ROM | disk | FTP | other *** search
/ Clickx 115 / Clickx 115.iso / software / tools / windows / tails-i386-0.16.iso / live / filesystem.squashfs / var / lib / dpkg / info / system-tools-backends.postrm < prev    next >
Encoding:
Text File  |  2011-09-23  |  441 b   |  18 lines

  1. #!/bin/sh
  2.  
  3. set -e
  4.  
  5. if dpkg-maintscript-helper supports mv_conffile; then
  6.   dpkg-maintscript-helper mv_conffile /etc/dbus-1/system.d/system-tools-backends.conf \
  7.     /etc/dbus-1/system.d/org.freedesktop.SystemToolsBackends.conf 2.6.0-6.1 -- "$@"
  8. fi
  9.  
  10. # Do not restart dbus on upgrades, only if we remove the package.
  11. if [ "$1" = "remove" ] ; then 
  12.     if [ -x /etc/init.d/dbus ]; then
  13.         invoke-rc.d dbus force-reload || true
  14.     fi
  15. fi
  16.  
  17.  
  18.